home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 029a / masview.zip / TTT.H < prev    next >
Text File  |  1991-10-23  |  182b  |  11 lines

  1.      /* tic-tac-toe game, header file */
  2.  
  3.      #define TRUE        1
  4.      #define FALSE        0
  5.  
  6.      #define EMPTY        0
  7.      #define COMPUTER        1
  8.      #define HUMAN        2
  9.  
  10.      /* end */
  11.